module Base
{

    recipe Open Box of 7.92x33 Rounds
    {
        8mmKurtzBox,

        Result:8mmKurtz=6,
        Sound:PutItemInBag,
        Time:5.0,
    }

    recipe Place 7.92x33 Rounds in Box
    {
        8mmKurtz=30,

        Result:8mmKurtzBox,
        Sound:PutItemInBag,
        Time:5.0,
    }

    recipe Unfold Stock
   {
        MP40_SMG_folded,

        Result:MP40_SMG_Unfolded,
        Time:15,
        OnCreate:onFoldStock_OnCreate,
   }

 	recipe Fold Stock
    {
        MP40_SMG_Unfolded,

        Result:MP40_SMG_folded,
        Time:15,
        OnCreate:onUnfoldStock_OnCreate,
    }

    recipe Open Box of 6.5x52 Carcano Rounds
	{
	    6x5Box,
	    Result:6x5Bullets=4,
		Category:Firearm,
	    Sound:PutItemInBag,
	    Time:5.0,
	}

	recipe Place 6.5x52 Carcano in Box
	{
	    6x5Bullets=20,
	    Result:6x5Box,
		Category:Firearm,
        Sound:PutItemInBag,
	    Time:5.0,
	}

    recipe Open Box of 7.92x57 Mauser Rounds
    {
        8mmMauserBox,

        Result:8mmMauser=8,
        Sound:PutItemInBag,
        Time:5.0,
    }

    
    recipe Place 7.92x57 Mauser Rounds in Box
    {
        8mmMauser=40,

        Result:8mmMauserBox,
        Sound:PutItemInBag,
        Time:5.0,
    }

    recipe Open Box of 9x25 Mauser Rounds
	{
	    9x25_Mauser_Box,
	    Result:9x25_Mauser_Bullets=16,
		Category:Firearm,
	    Sound:PutItemInBag,
	    Time:5.0,
	}
	recipe Place 9x25 Mauser in Box
	{
	    9x25_Mauser_Bullets=80,
	    Result:9x25_Mauser_Box,
		Category:Firearm,
        Sound:PutItemInBag,
	    Time:5.0,
	}

    	recipe Open Box of 6.5x52 Arisaka Rounds
	{
	    65x50_Box,
	    Result:65x50_Bullets=10,
		Category:Firearm,
	    Sound:PutItemInBag,
	    Time:5.0,
	}

	recipe Place 6.5x52 Arisaka in Box
	{
	    65x50_Bullets=50,
	    Result:65x50_Box,
		Category:Firearm,
        Sound:PutItemInBag,
	    Time:5.0,
	}

}